@charset "utf-8";
.ax-dropzone-outer {
  border: 0.2rem dashed #ebebeb;
  border-radius: 0.3rem;
  background-color: #fff;
  box-sizing: border-box;
  padding: 1.4rem;
}
.ax-dropzone {
  cursor: pointer;
}
.ax-dropzone .ax-preview {
  position: relative;
}
.ax-dropzone .ax-ready {
  text-align: center;
  padding: 2.2rem 0;
}
.ax-dropzone .ax-ready .ax-icon [class*="font"] {
  color: #b3b3b3;
  font-size: 4.4rem;
  line-height: 6.4rem;
}
.ax-dropzone .ax-ready .ax-text {
  color: #b3b3b3;
}
.ax-dropzone .ax-image {
  width: 100%;
  height: 16rem;
  overflow: hidden;
  border-radius: 0.3rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.ax-dropzone .ax-image:before {
  content: "";
  pointer-events: none;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  border-width: 1px;
  border-style: solid;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  border-color: rgba(0, 0, 0, 0.12);
  z-index: 2;
}
.ax-dropzone .ax-image img {
  width: 100%;
  border-radius: 0.3rem;
}
.ax-dropzone .ax-item {
  position: relative;
}
.ax-dropzone .ax-operate {
  text-align: right;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 4;
}
.ax-dropzone .ax-operate a {
  color: #fff;
  text-align: center;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 2.4rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  margin-left: 0.8rem;
  transition: all 100ms linear;
}
.ax-dropzone .ax-operate a [class*="font"] {
  font-size: 1.2rem;
}
.ax-dropzone .ax-operate a svg {
  width: 1.2rem;
  height: 2.4rem;
}
.ax-dropzone .ax-operate a:hover {
  transform: scale(1.2);
}
.ax-dropzone .ax-progress {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.3rem;
  transition: all 200ms linear;
  position: absolute;
  right: 0;
  top: 0;
}
.ax-dropzone .ax-percent {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 16rem;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 200ms linear;
  position: absolute;
  right: 0;
  top: 0;
}
.ax-dropzone .ax-percent i {
  font-size: 2.2rem;
}
.ax-dropzone .ax-details {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.ax-dropzone .ax-size,
.ax-dropzone .ax-filename {
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.ax-dropzone .ax-success-mark {
  color: #198cff;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition-property: all;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}
.ax-dropzone .ax-success-mark [class*="font"] {
  font-size: 2.8rem;
}
.ax-dropzone .ax-error-mark {
  color: #dc3545;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition-property: all;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}
.ax-dropzone .ax-error-mark [class*="font"] {
  font-size: 2.8rem;
}
.ax-dropzone .ax-error-message {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  text-overflow: ellipsis;
  width: 100%;
  max-height: calc(2.8rem * 2);
  max-width: 100%;
  line-height: 2.8rem;
  overflow: hidden;
  background-color: #dc3545;
  border-radius: 0 0 0.3rem 0.3rem;
  transition: all 200ms linear;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: absolute;
  left: 0;
  bottom: calc(-2.8rem*2);
}
.ax-dropzone.ax-started .ax-ready .ax-icon {
  display: none;
}
.ax-dropzone.ax-started .ax-ready {
  padding: 0;
}
.ax-dropzone.ax-started .ax-ready .ax-text {
  margin-bottom: 0.8rem;
}
.ax-dropzone .ax-success .ax-success-mark {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: bounceIn;
}
.ax-dropzone .ax-error .ax-error-mark {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: bounceIn;
}
.ax-dropzone .ax-error:hover .ax-error-message {
  bottom: 0;
}
.ax-dropzone .ax-final .ax-percent {
  opacity: 0;
}
/*Telephone*/
@media screen and (max-width: 500px) {
  .ax-dropzone .ax-image {
    height: 8rem;
  }
  .ax-dropzone .ax-grid-block {
    width: calc((100%/24)*8) !important;
  }
}
